home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / PBLIB1 / PROGS / DB.DOC < prev    next >
Text File  |  1994-01-04  |  1KB  |  20 lines

  1. DB Combined xBase utility
  2.  
  3.  DB CLONE  <olddbf> <newdbf> - Copies the structure of <olddbf> making <newdbf>
  4.  DB CREATE <newdbf>          - Creates DBF file from <fieldspec>
  5.  DB DDL    <olddbf>          - Prints header info, stats and fields.
  6.  DB DUMP   <olddbf>          - Prints records <opts> see below
  7.  DB EXPORT <olddbf>          - Exports file in comma delimited form to <textf>
  8.  DB IMPORT <olddbf> <textf>  - Appends records from comma delimited text file
  9.  DB ZAP    <olddbf>          - Leaves just the header, no records
  10.  
  11. Most of these functions have control parameters or options which can be
  12.   specified in DB.CFG or overridden on the command line.
  13.  
  14. FIRST=n LAST=n COUNT=n   primarily when listing, n is a (logical) record number
  15. KEYSPEC=<s> KEYTAG=<s>   index file data - see further documentation
  16. OUT=<file>               can direct output to CON, LPT1, textfile ...
  17. P                        P all by itself is equivalent to OUT=LPT1
  18. FIELDSPEC=<s>            can control which fields are used and length.
  19.  
  20. *SEE Documentation for more complete list